home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / pc_board / bm_v11.zip / REDO.BAT < prev    next >
DOS Batch File  |  1992-05-13  |  2KB  |  46 lines

  1. REM********************************************************************
  2. REM**                                                                **
  3. REM** REDO.BAT will assist you in doing bulk bulletin updates.       **
  4. REM** If you use this batch file as is, just type in :               **
  5. REM**   redo 1 2 3 4 5 6 7                                           **
  6. REM**                                                                **
  7. REM** This will redo bulletins 1 thru 7, any number is acceptable    **
  8. REM** and the DOS limit is the only limit as to how many can be      **
  9. REM** redone with this file.                                         **
  10. REM**                                                                **
  11. REM** If you wish to change the More prompt default of NO, remove    **
  12. REM** line 28 and take out the REM.  To have it specify Y/N PER      **
  13. REM** BULLETIN, take out lines 28 & 29 then remove the REM in the    **
  14. REM** NEW lines 28 & 29.  Then the systax for the REDO will be :     **
  15. REM**                                                                **
  16. REM**   REDO 1 y 2 y 3 n 4 y 5 n 6 y 7 y                             **
  17. REM**                                                                **
  18. REM** This will do bulletins 1 thru 7 with more prompts placed in    **
  19. REM** according to the parameter AFTER the bulletin number.          **
  20. REM**                                                                **
  21. REM********************************************************************
  22.  
  23. @echo off
  24. cls
  25. if "%1"=="" goto parms
  26. :nextone
  27. if "%1"=="" goto done
  28. bullet bullet%1 n
  29. REM bullet bullet%1 y
  30. REM bullet bullet%1 %2
  31. REM shift
  32. shift
  33. goto nextone
  34. :parms
  35. cls
  36. echo Format must be as follows :
  37. echo                  redo bullname bullname ... ...
  38. echo 
  39. goto end
  40. :done
  41. cls
  42. echo 
  43. echo Your bulletins are now complete.
  44. :end
  45. echo on
  46.